SpecialChargesProviderThe SpecialChargesProvider section of the web.config file allows you to assign a special charges provider for your KommerceServer system. This is used when a user adds a product to their cart to automatically add any applicable special charges related to the product such as a state imposed fees or ancillary service charges. You can only select one provider to use for each store website by setting the default attribute for the element. Nested within this element are the available providers supported and further described below.
Example Usage<SpecialChargesProvider default="KoreSpecialChargesProvider"> <providers> <clear /> <add name="KoreSpecialChargesProvider" type="Koretech.Framework.Ecommerce.Providers.SpecialChargesProvider.NullSpecialChargesProvider, Koretech.Framework.Ecommerce" /> <add name="PreludeSpecialChargesProvider" type="Koretech.KommerceServer.Providers.PreludeSpecialChargesProvider, Koretech.KommerceServer" /> </providers> </SpecialChargesProvider> |